net/textproto.Reader.buf (field)

11 uses

	net/textproto (current package)
		reader.go#L29: 	buf []byte // a re-usable buffer for readContinuedLineSlice
		reader.go#L167: 	r.buf = append(r.buf[:0], trim(line)...)
		reader.go#L172: 	lim -= int64(len(r.buf))
		reader.go#L176: 		r.buf = append(r.buf, ' ')
		reader.go#L177: 		if int64(len(r.buf)) >= lim {
		reader.go#L180: 		line, err := r.readLineSlice(lim - int64(len(r.buf)))
		reader.go#L184: 		r.buf = append(r.buf, trim(line)...)
		reader.go#L186: 	return r.buf, nil